home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Developer / macgzip_022-src / macos / Posix / ThinkCPosix Sources / chmod.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-26  |  172 b   |  16 lines  |  [TEXT/MPS ]

  1. /* $Id: $ */
  2.  
  3. /*
  4.  * For the moment this function does nothing,
  5.  * and reports success!
  6.  */
  7.  
  8. #include "ThinkCPosix.h"
  9.  
  10. int chmod(char *path, mode_t mode)
  11. {
  12.      
  13.     return 0;
  14. }
  15.  
  16.